home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gmp-132.lha / gmp-1.3.2 / mpz_add_ui.c < prev    next >
C/C++ Source or Header  |  1993-05-02  |  2KB  |  85 lines

  1. /* mpz_add_ui -- Add an MP_INT and an unsigned one-word integer.
  2.  
  3. Copyright (C) 1991 Free Software Foundation, Inc.
  4.  
  5. This file is part of the GNU MP Library.
  6.  
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. The GNU MP Library is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with the GNU MP Library; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. #include "gmp.h"
  22. #include "gmp-impl.h"
  23.  
  24. void
  25. #ifdef __STDC__
  26. mpz_add_ui (MP_INT *sum, const MP_INT *add1, mp_limb add2)
  27. #else
  28. mpz_add_ui (sum, add1, add2)
  29.      MP_INT *sum;
  30.      const MP_INT *add1;
  31.      mp_limb add2;
  32. #endif
  33. {
  34.   mp_srcptr add1p;
  35.   mp_ptr sump;
  36.   mp_size add1size, sumsize;
  37.   mp_size abs_add1size;
  38.  
  39.   add1size = add1->size;
  40.   abs_add1size = ABS (add1size);
  41.  
  42.   /* If not space for SUM (and possible carry), increase space.  */
  43.   sumsize = abs_add1size + 1;
  44.   if (sum->alloc < sumsize)
  45.     _mpz_realloc (sum, sumsize);
  46.  
  47.   /* These must be after realloc (ADD1 may be the same as SUM).  */
  48.   add1p = add1->d;
  49.   sump = sum->d;
  50.  
  51.   if (add2 == 0)
  52.     {
  53.       MPN_COPY (sump, add1p, abs_add1size);
  54.       sum->size = add1size;
  55.       return;
  56.     }
  57.   if (abs_add1size == 0)
  58.     {
  59.       sump[0] = add2;
  60.       sum->size = 1;
  61.       return;
  62.     }
  63.  
  64.   if (add1size >= 0)
  65.     {
  66.       sumsize = mpn_add (sump, add1p, abs_add1size, &add2, 1);
  67.       if (sumsize != 0)
  68.     sump[abs_add1size] = 1;
  69.       sumsize = sumsize + abs_add1size;
  70.     }
  71.   else
  72.     {
  73.       /* The signs are different.  Need exact comparision to determine
  74.      which operand to subtract from which.  */
  75.       if (abs_add1size == 1 && add1p[0] < add2)
  76.     sumsize = (abs_add1size
  77.            + mpn_sub (sump, &add2, 1, add1p, 1));
  78.       else
  79.     sumsize = -(abs_add1size
  80.             + mpn_sub (sump, add1p, abs_add1size, &add2, 1));
  81.     }
  82.  
  83.   sum->size = sumsize;
  84. }
  85.